home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / MPW Related / Animated Cursors / WindowTkl.h < prev   
Encoding:
C/C++ Source or Header  |  1990-09-14  |  1.1 KB  |  39 lines  |  [TEXT/MPS ]

  1. #ifndef _windowtkl_
  2. #define _windowtkl_
  3. /******************************************************************************\
  4. * Header Files
  5. \******************************************************************************/
  6.  
  7. #ifndef __EVENTS__
  8. #include <Events.h>
  9. #endif
  10.  
  11. #ifndef __WINDOWS__
  12. #include <Windows.h>
  13. #endif
  14.  
  15.  
  16. /******************************************************************************\
  17. * Constant Declarations
  18. \******************************************************************************/
  19.  
  20. #define scrollBarSize 16 //Width of scroll bar in pixels
  21.  
  22.  
  23. /******************************************************************************\
  24. * Function Declarations
  25. \******************************************************************************/
  26.  
  27. void      DoUpdateEvent (EventRecord *);
  28. void      DoActivateEvent (WindowPeek, short);
  29. void      DoContentEvent (EventRecord *, WindowPtr);
  30. void      DoDragEvent (EventRecord *, WindowPtr);
  31. void      DoGoAwayEvent (EventRecord *, WindowPtr);
  32. void      DoZoomEvent (EventRecord *, WindowPtr, short);
  33. void      CloseAllWindows (void);
  34. void      SetWindSize (WindowPtr);
  35. WindowPtr FrontWindKind (short);
  36.  
  37.  
  38. #endif
  39.